* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Manrope, sans-serif;
}

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    background-color: rgb(255, 250, 240);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
}

header {
    padding: 4px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 89px;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-top: -17px;
    align-items: center;
    line-height: 40px;
    border-bottom: 1px solid rgb(0, 0, 0);
}

nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle div {
    width: 20px;
    height: 2px;
    background-color: rgb(0, 0, 0);
}

.sidebar {
    position: fixed;
    top: 0px;
    left: -260px;
    width: 250px;
    height: 100%;
    background-color: rgb(255, 250, 240);
    padding: 20px;
    transition: left 0.3s;
    z-index: 1000;
}

.sidebar.active {
    left: 0px;
}

.social-icons {
    float: right;
    margin-top: -20px;
}

.sidebar .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    text-decoration: none;
    margin-top: 105px;
}

.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.overlay.active {
    display: block;
}

.hero {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10%;
    background-color: rgb(245, 226, 207);
}

.hero-text {
    flex: 1 1 0%;
    min-width: 280px;
}

.hero-text h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: rgb(92, 64, 51);
}

.hero-text p {
    font-size: 16px;
}

.hero-img {
    flex: 1 1 0%;
    text-align: right;
    min-width: 280px;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.welcome {
    text-align: center;
    padding: 40px 10%;
    background-color: rgb(255, 255, 255);
}

.welcome h2 {
    color: rgb(68, 68, 68);
    font-size: 22px;
    margin-bottom: 20px;
}

.welcome p {
    font-size: 16px;
    color: rgb(51, 51, 51);
    max-width: 800px;
    margin: auto;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

.header {
    height: 123px;
}

.social-icons i {
    background-color: rgb(138, 56, 41);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
    display: inline-block;
}

.social-icons i:hover {
    background: linear-gradient(45deg, rgb(248, 181, 48), rgb(252, 224, 105));
    transform: scale(0.9);
    box-shadow: rgb(209, 79, 58) 0px 0px 10px;
}

.social-icons a {
    margin-left: 15px;
}

.wrapper h1 {
    font-size: 20px;
    letter-spacing: 0.3px;
    text-align: center;
    font-weight: 550;
}

.wrapper p {
    text-align: center;
    font-size: 17px;
    line-height: 29px;
    padding: 10px 100px;
}

.quailty-list img {
    width: 90%;
}

.quailty-list h1 {
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}

.quailty-list {
    margin-top: 40px;
    text-align: center;
}

.btn a {
    padding: 10px 30px;
    background: rgb(105, 61, 43);
    color: white;
    border-radius: 30px;
    margin-top: 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: 0.4s;
    box-shadow: transparent 0px 0px 0px;
}

.location-info {
    padding: 20px;
    background-color: rgb(255, 254, 235);
}

.location-info h1 {
    text-align: center;
    font-size: 20px;
    color: rgb(152, 58, 40);
    font-weight: 600;
    margin-bottom: 20px;
}

.location-info p {
    color: rgb(152, 58, 40);
    margin-top: 10px;
    font-weight: 500;
    padding: 0px 14px;
    text-align: center;
}

.contact-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.contact-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-heading {
    color: rgb(152, 58, 40);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}

.contact-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-icons i {
    font-size: 15px;
    background: rgb(138, 56, 41);
    border-radius: 50%;
    padding: 7px 8px;
    color: rgb(250, 227, 194);
    transition: 0.3s;
    display: inline-block;
}

.contact-icons i:hover {
    animation: 0.8s ease 0s infinite alternate none running pulse-contact;
}

@keyframes pulse-contact {
    0% {
        box-shadow: rgb(138, 56, 41) 0px 0px 5px;
        transform: scale(1);
    }

    100% {
        box-shadow: rgb(138, 56, 41) 0px 0px 12px;
        transform: scale(1.1);
    }
}

hr {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 1px solid rgb(177, 63, 43);
    margin: 15px 0px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.contact-column {
    flex: 1 1 0%;
    min-width: 280px;
}

.contact-column h4 {
    margin-bottom: 18px;
    font-weight: 600;
    color: rgb(152, 58, 40);
    font-size: 19px;
}

.contact-column p {
    margin: 10px 0px;
    font-size: 15px;
    font-weight: 500;
    color: rgb(152, 58, 40);
    line-height: 1.5;
}

.contact-column i {
    color: rgb(255, 230, 202);
    background: rgb(144, 60, 39);
    border-radius: 50%;
    font-size: 12px;
    padding: 8px;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .contact-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icons {
        margin-top: 10px;
    }

    .contact-row {
        flex-direction: column;
    }

    .contact-column {
        width: 100%;
    }
}

.active {
    color: rgb(105, 61, 43);
    font-weight: 750;
}

.founders-section {
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: rgb(68, 68, 68);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.founders-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 95px;
}

.founder-box {
    position: relative;
    background-color: rgb(151, 80, 46);
    color: white;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    padding-top: 70px;
    padding-bottom: 30px;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
}

.founder-image {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgb(255, 255, 255);
    background: rgb(255, 255, 255);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content {
    padding: 0px 20px;
    margin-top: 20px;
}

.founder-content h3 {
    font-size: 22px;
    font-weight: 550;
    margin-top: 93px;
    text-align: center;
}

.founder-content hr {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 1px solid rgb(255, 255, 255);
    width: 90%;
    margin: 10px auto 20px;
}

.founder-content ul {
    list-style: none;
    padding: 0px;
    font-size: 16px;
    line-height: 1.6;
}

.founder-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .founders-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .founder-box {
        width: 100%;
        margin-bottom: 58px;
    }
}

.features-section {
    background-color: rgb(255, 250, 240);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.feature-box {
    color: rgb(151, 81, 41);
    padding: 11px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 20px;
}

.feature-box .icon-box img {
    width: 107px;
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 19px;
    font-weight: 600;
    margin-top: 10px;
}

.feature-divider {
    height: 90px;
    border-left: 2px dotted rgb(163, 91, 50);
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }

    .feature-divider {
        display: none;
    }

    .feature-box {
        padding: 10px;
    }

    .feature-box h4 {
        font-size: 16px;
        font-weight: 600;
        margin-top: 10px;
    }

    .buttones {
        display: flex;
    }
}

.business {
    margin-bottom: 30px;
}

.btns a {
    padding: 10px 55px !important;
}

.product p {
    font-size: 20px;
}

.product-img {
    text-align: center;
}

.product-img img {
    width: 80% !important;
}

.top-label {
    display: inline-block;
    background: linear-gradient(to right, rgb(94, 44, 21), rgb(187, 90, 38));
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    margin-bottom: 30px;
}

.order-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-icon {
    padding: 8px;
    border-radius: 50%;
    background: rgb(36, 164, 22);
}

.whatsapp-icon img {
    width: 40px;
}

.divider-line {
    height: 50px;
    border-left: 2px solid rgb(187, 90, 38);
}

.order-text {
    color: rgb(94, 44, 21);
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

.order-text span {
    display: block;
    margin: 2px 0px;
}

@media (max-width: 600px) {
    .order-info {
        flex-direction: row;
        gap: 20px;
    }

    .icon-wrapper {
    }

    .divider-line {
    }

    .order-text {
        text-align: left;
        line-height: 25px;
        font-size: 15px;
    }
}

.why-us {
    text-align: center;
}

.why-us img {
    margin-top: 30px;
    width: 80% !important;
}

.testimonial-section {
    text-align: center;
}

.testimonial-section h2 {
    font-size: 22px;
    color: rgb(255, 255, 255);
    margin-bottom: 50px;
}

.testimonial-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-box {
    width: 311px;
    padding: 0px 10px;
    color: rgb(51, 51, 51);
}

.quote-circle {
    width: 80px;
    height: 80px;
    margin: 0px auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(161, 79, 13), rgb(90, 43, 6));
    color: white;
    font-size: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-name {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 2px;
}

.stars {
    font-size: 21px;
    color: rgb(89, 86, 85);
    margin-top: 0px !important;
}

.vertical-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    gap: 0px;
}

.vertical-divider .dot {
    width: 13px;
    height: 13px;
    background-color: rgb(129, 76, 36);
    border-radius: 50%;
}

.vertical-divider .line {
    width: 2px;
    flex-grow: 1;
    background-color: rgb(129, 76, 36);
}

@media screen and (max-width: 900px) {
    .testimonial-row {
        flex-direction: column;
        align-items: center;
    }

    .vertical-divider {
        display: none;
    }
}

.contact-section1 {
    padding: 40px 30px;
    background-color: rgb(120, 59, 33);
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    color: rgb(255, 255, 255);
}

.contact-section1 h2 {
    text-align: center;
    font-size: 21px;
    margin-bottom: 18px;
}

.underline {
    width: 40px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    margin: 0px auto 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    padding: 18px;
    font-size: 14px;
    border: 1px solid rgb(163, 96, 53);
    text-align: center;
    background-color: transparent;
    color: rgb(255, 255, 255);
    border-radius: 4px;
    outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1 1 0%;
}

::placeholder {
    color: rgb(217, 184, 167);
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

.contact-sectiones {
    background-color: rgb(151, 80, 46);
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 40px 20px;
    margin: 30px auto;
}

.contact-sectiones:last-of-type {
    background: rgb(151, 80, 46);
    border-top-right-radius: 40px;
}

.contact-sectiones h2 {
    text-align: center;
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
}

.contact-underline {
    width: 40px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    margin: 0px auto 30px;
}

.contact-label-title {
    text-align: center;
    font-size: 23px;
    color: white;
    margin-bottom: 10px;
}

.contact-radio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-radio-option {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    color: rgb(120, 59, 33);
    padding: 15px 23px;
    border-radius: 69px;
    font-weight: bold;
    margin-top: 24px;
    line-height: normal;
    font-size: 20px;
    width: 43%;
    cursor: pointer;
    position: relative;
}

.contact-radio-option input[type="radio"] {
    appearance: none;
    width: 30px;
    background: rgb(120, 59, 33);
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.contact-radio-option input[type="radio"]:checked::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: rgb(120, 59, 33);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 5px;
}

.contact-other-option {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    color: rgb(120, 59, 33);
    padding: 19px 20px;
    width: 100%;
    margin-top: 20px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 21px;
    flex-wrap: wrap;
    justify-content: initial;
}

.contact-other-option input[type="radio"] {
    margin-right: 10px;
}

.contact-other-option input[type="text"] {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgba(120, 59, 33, 0.26);
    margin-left: 10px;
    font-size: 17px;
    width: 88%;
    text-align: center;
    background: transparent;
    color: rgb(120, 59, 33);
}

.contact-form-group {
    margin: 20px 0px;
    text-align: center;
}

.contact-form-group input[type="text"] {
    width: 80%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    text-align: center;
    border-bottom: 2px solid rgb(208, 106, 58);
    padding: 23px;
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.contact-form-group small {
    font-size: 12px;
    color: rgb(243, 204, 159);
    font-style: italic;
}

.contact-textarea-box {
    border: 1px solid rgb(160, 102, 43);
    padding: 15px;
    text-align: center;
    margin-top: 25px;
    border-radius: 6px;
}

.contact-textarea-box textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 14px;
    resize: none;
    height: 80px;
    line-height: 1.6;
    outline: none;
}

.contact-textarea-box label {
    display: block;
    color: white;
    margin-bottom: 10px;
    font-size: 21px;
}

@media (max-width: 600px) {
    .contact-radio-grid {
        align-items: center;
    }

    .contact-other-option {
        flex-direction: column;
    }

    .contact-other-option input[type="text"] {
        margin-left: 0px;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .header {
        height: 96px;
    }

    .social-icons {
        float: left;
        margin-top: 11px;
    }

    .nav-links a {
        text-decoration: none;
        color: black;
        font-size: 14px;
        letter-spacing: 0.3px;
        font-weight: 500;
    }

    .social-icons a {
        margin-right: 15px;
        margin-left: 0px;
    }

    .wrapper h1 {
        font-size: 17px;
        font-weight: 550;
        text-align: center;
    }

    .wrapper p {
        text-align: center;
        font-size: 14px;
        line-height: 28px;
        padding: 10px 3px;
    }

    .form-check {
        min-width: 70px !important;
        flex-shrink: 0;
    }

    .product-category__image img {
        margin-top: 30px;
        background-position: center center;
        width: 100px !important;
        height: 100px !important;
    }

    .btn {
        margin-top: 0px !important;
    }

    .btn a {
        margin-top: 20px;
    }

    .btns a {
        padding: 10px 30px !important;
    }

    .component-title {
        font-size: 20px !important;
    }

    .banner img {
        margin-top: 95px !important;
    }

    .contact-section {
        margin-top: 20px;
    }

    .active {
        color: rgb(105, 61, 43) !important;
        font-weight: 700 !important;
    }

    .product-img img {
        width: 100% !important;
    }

    .top-label {
        display: inline-block;
        background: linear-gradient(to right, rgb(94, 44, 21), rgb(187, 90, 38));
        color: white;
        font-weight: bold;
        padding: 17px 14px;
        border-radius: 30px;
        font-size: 13px;
        letter-spacing: 0.2px;
        margin-bottom: 30px;
    }

    .quailty-list h1 {
        font-size: 15px;
        margin-top: 10px;
        font-weight: 600;
        text-align: center;
    }

    .why-us img {
        margin-top: 30px;
        width: 100% !important;
    }

    .contact-radio-option {
        display: flex;
        align-items: center;
        background-color: rgb(255, 255, 255);
        color: rgb(120, 59, 33);
        padding: 15px 16px;
        border-radius: 69px;
        font-weight: bold;
        margin-top: 24px;
        line-height: normal;
        font-size: 13px;
        width: 48%;
        cursor: pointer;
        position: relative;
    }

    .contact-radio-option input[type="radio"] {
        appearance: none;
        width: 10px;
        background: rgb(120, 59, 33);
        height: 10px;
        border-radius: 50%;
        margin-right: 10px;
        position: relative;
    }

    .contact-other-option {
        width: 100%;
    }

    .testimonial-section h2 {
        font-size: 18px;
        color: rgb(255, 255, 255);
        margin-bottom: 50px;
    }

    .client-name {
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 2px;
    }

    .testimonial-text {
        font-size: 16px;
        margin-bottom: 7px;
        line-height: 1.6;
    }

    .contact-textarea-box label {
        display: block;
        color: white;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .btn a {
        padding: 10px 30px;
        background: rgb(105, 61, 43);
        color: white;
        border-radius: 30px;
        margin-top: 30px;
        font-size: 12px;
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
    }

    .category-filters__wrap.js-slider {
        display: flex;
        gap: 10px;
        animation: 40s linear 0s infinite normal none running scrollSlider;
        width: max-content;
    }

    .mv-card-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
        top: -16px !important;
    }

    .mv-mission {
        background-color: rgb(110, 59, 40);
        border-radius: 34px 0px;
        margin: 0px 20px;
    }

    .mv-card {
        width: 370px;
        border-radius: 12px;
        text-align: center;
        color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 20px;
        padding: 30px 22px !important;
    }

    .mv-vision {
        background-color: rgb(168, 85, 47);
        border-radius: 34px 0px;
        margin: 0px 20px;
    }

    .contact-heading {
        color: rgb(152, 58, 40);
        font-weight: bold;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .contact-column h4 {
        margin-bottom: 18px;
        font-weight: 600;
        color: rgb(152, 58, 40);
        font-size: 17px;
    }

    .contact-logo img {
        width: 100px;
        margin-bottom: 20px;
    }

    .contact-column p {
        margin: 10px 0px;
        font-size: 14px;
        font-weight: 500;
        color: rgb(152, 58, 40);
        line-height: 20px;
    }

    .contact-sectiones h2 {
        text-align: center;
        font-size: 17px;
        color: white;
        margin-bottom: 5px;
    }

    .contact-label-title {
        text-align: center;
        font-size: 18px;
        color: white;
        margin-bottom: 0px;
    }

    .location-info p {
        color: rgb(152, 58, 40);
        margin-top: 10px;
        font-weight: 500;
        padding: 0px 14px;
        text-align: center;
        font-size: 15px !important;
    }

    .quailty-list img {
        width: 70%;
    }

    .quailty-list {
        margin-top: 30px;
        text-align: center;
    }

    .nav-links {
        display: flex;
        gap: 40px;
        margin-top: -17px;
        align-items: center;
        line-height: 40px;
        border-bottom: 1px solid rgb(255, 250, 240);
    }
}

.component-title {
    font-size: 20px;
    letter-spacing: 0.3px;
    text-align: center;
    font-weight: 550;
}

.category-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.category-filters__wrap.js-slider {
    display: flex;
    gap: 10px;
    width: max-content;
}

.form-check {
    min-width: 180px;
    flex-shrink: 0;
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-50%);
    }
}

.product-category__image img {
    width: 130px;
    height: 130px;
    margin-top: 30px;
    object-fit: cover;
}

.banner img {
    margin-top: 120px;
}

.founder-content ul li strong {
    font-weight: 550;
}

.mv-section {
    background-color: rgb(255, 250, 240);
    position: relative;
}

.mv-bg-image {
    width: 100%;
    overflow: hidden;
}

.mv-bg-image img {
    width: 100%;
    display: block;
}

.mv-card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    top: -166px;
    z-index: 2;
}

.mv-card {
    width: 370px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 20px;
}

.mv-mission {
    background-color: rgb(110, 59, 40);
    border-radius: 34px 0px;
}

.mv-vision {
    background-color: rgb(168, 85, 47);
    border-radius: 34px 0px;
}

.mv-icon {
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 550;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.mv-line {
    height: 2px;
    background-color: rgb(255, 255, 255);
    margin: 10px auto 20px;
}

.mv-card p {
    font-size: 15px;
    line-height: 25px;
}

.category-slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    padding: 20px 0px;
}

.form-check {
    min-width: 150px;
    flex-shrink: 0;
    text-align: center;
}

.product-category__image img {
    height: auto;
    display: block;
    margin: 0px auto;
}

.btn a:hover {
    background: linear-gradient(45deg, rgb(248, 181, 48), rgb(252, 224, 105));
    box-shadow: rgb(248, 181, 48) 0px 0px 15px, rgb(252, 219, 82) 0px 0px 25px;
    color: white;
    transform: translateY(-3px);
}

a:hover {
    color: rgb(248, 181, 48);
}

.internation {
    text-align: center;
    margin-top: 30px;
}

.internation img {
    width: 80%;
}

.table-container1 {
    border-radius: 36px 0px !important;
}

.table-container {
    background-color: rgb(255, 255, 255);
    border-radius: 0px 36px;
    border: 2px solid wheat;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 190px;
}

.table-content {
    padding: 11px;
}

.table-row {
    display: grid;
    grid-template-columns: 81px 1fr;
    padding: 5px 0px;
    border-bottom: 1px solid rgb(221, 221, 221);
}

.table-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: bold;
    font-size: 13px;
    border-right: 1px solid rgb(105, 61, 43);
    margin-right: 5px;
    color: rgb(91, 62, 31);
}

.value {
    color: rgb(51, 51, 51);
    font-weight: 600;
    font-size: 13px;
}

.image-container {
    position: relative;
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.image-container img {
    height: 230px;
    display: block;
}

.product-name {
    background-color: rgb(169, 101, 51);
    color: rgb(255, 255, 255);
    padding: 10px 0px;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

@media (max-width: 768px) {
    .table-container {
        grid-template-columns: 1fr;
    }

    .image-container {
        order: -1;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1230px;
    }
}

.table-container {
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .image-container img {
        width: 100%;
        /* object-fit: cover; */
        height: 229px;
    }.internation img {
    width: 100%;
    margin-top: 20px;
}
}
